home *** CD-ROM | disk | FTP | other *** search
/ Hobby PC 13 / Hobby PC 13.iso / assets / Asset Library / Dynamic HTML Utilities / Browser Sniffer / browsersnif.txt next >
Text File  |  2001-04-09  |  5KB  |  109 lines

  1. <SCRIPT LANGUAGE="JavaScript" ID="sqBrowserSniff"><!--
  2. function Is ()
  3. {   // convert all characters to lowercase to simplify testing
  4.     var agt=navigator.userAgent.toLowerCase()
  5.  
  6.     // *** BROWSER VERSION ***
  7.     this.major = parseInt(navigator.appVersion)
  8.     this.minor = parseFloat(navigator.appVersion)
  9.  
  10.     this.nav  = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1)
  11.                 && (agt.indexOf('compatible') == -1)))
  12.     this.nav2 = (this.nav && (this.major == 2))
  13.     this.nav3 = (this.nav && (this.major == 3))
  14.     this.nav4 = (this.nav && (this.major == 4))
  15.     this.nav4up = this.nav && (this.major >= 4)
  16.     this.navonly      = (this.nav && (agt.indexOf(";nav") != -1))
  17.  
  18.     this.ie   = (agt.indexOf("msie") != -1)
  19.     this.ie3  = (this.ie && (this.major == 2))
  20.     this.ie4  = (this.ie && (this.major == 4))
  21.     this.ie4up  = this.ie  && (this.major >= 4)
  22.  
  23.     this.opera = (agt.indexOf("opera") != -1)
  24.      
  25.     // *** JAVASCRIPT VERSION CHECK *** 
  26.     // Useful to workaround Nav3 bug in which Nav3 
  27.     // loads <SCRIPT LANGUAGE="JavaScript1.2">.
  28.     if (this.nav2 || this.ie3) this.js = 1.0
  29.     else if (this.nav3 || this.opera) this.js = 1.1
  30.     else if (this.nav4 || this.ie4) this.js = 1.2
  31.     // NOTE: In the future, update this code when newer versions of JS 
  32.     // are released. For now, we try to provide some upward compatibility 
  33.     // so that future versions of Nav and IE will show they are at 
  34.     // *least* JS 1.2 capable. Always check for JS version compatibility 
  35.     // with > or >=.
  36.     else if ((this.nav && (this.minor > 4.05)) || (this.ie && (this.major > 4))) 
  37.          this.js = 1.2
  38.     else this.js = 0.0 // HACK: always check for JS version with > or >=
  39.  
  40.     // *** PLATFORM ***
  41.     this.win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) )
  42.     // NOTE: On Opera 3.0, the userAgent string includes "Windows 95/NT4" on all
  43.     //        Win32, so you can't distinguish between Win95 and WinNT.
  44.     this.win95 = ((agt.indexOf("win95")!=-1) || (agt.indexOf("windows 95")!=-1))
  45.  
  46.     // is this a 16 bit compiled version?
  47.     this.win16 = ((agt.indexOf("win16")!=-1)
  48.                || (agt.indexOf("16bit")!=-1) || (agt.indexOf("windows 3.1")!=-1)
  49.                || (agt.indexOf("windows 16-bit")!=-1) )  
  50.  
  51.     this.win31 = (agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) ||
  52.                  (agt.indexOf("windows 16-bit")!=-1)
  53.  
  54.     // NOTE: Reliable detection of Win98 may not be possible. It appears that:
  55.     //       - On Nav 4.x and before you'll get plain "Windows" in userAgent.
  56.     //       - On Mercury client, the 32-bit version will return "Win98", but
  57.     //         the 16-bit version running on Win98 will still return "Win95".
  58.     this.win98 = ((agt.indexOf("win98")!=-1)||(agt.indexOf("windows 98")!=-1))
  59.     this.winnt = ((agt.indexOf("winnt")!=-1)||(agt.indexOf("windows nt")!=-1))
  60.     this.win32 = this.win95 || this.winnt || this.win98 || 
  61.                  ((this.major >= 4) && (navigator.platform == "Win32")) ||
  62.                  (agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1)
  63.  
  64.     this.os2   = (agt.indexOf("os/2")!=-1) 
  65.                  || (navigator.appVersion.indexOf("OS/2")!=-1)  
  66.                  || (agt.indexOf("ibm-webexplorer")!=-1)
  67.  
  68.     this.mac    = (agt.indexOf("mac")!=-1)
  69.     this.mac68k = this.mac && ((agt.indexOf("68k")!=-1) || 
  70.                                (agt.indexOf("68000")!=-1))
  71.     this.macppc = this.mac && ((agt.indexOf("ppc")!=-1) || 
  72.                                (agt.indexOf("powerpc")!=-1))
  73.  
  74.     this.sun   = (agt.indexOf("sunos")!=-1)
  75.     this.sun4  = (agt.indexOf("sunos 4")!=-1)
  76.     this.sun5  = (agt.indexOf("sunos 5")!=-1)
  77.     this.suni86= this.sun && (agt.indexOf("i86")!=-1)
  78.     this.irix  = (agt.indexOf("irix") !=-1)    // SGI
  79.     this.irix5 = (agt.indexOf("irix 5") !=-1)
  80.     this.irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1))
  81.     this.hpux  = (agt.indexOf("hp-ux")!=-1)
  82.     this.hpux9 = this.hpux && (agt.indexOf("09.")!=-1)
  83.     this.hpux10= this.hpux && (agt.indexOf("10.")!=-1)
  84.     this.aix   = (agt.indexOf("aix")  !=-1)      // IBM
  85.     this.aix1  = (agt.indexOf("aix 1")  !=-1)    
  86.     this.aix2  = (agt.indexOf("aix 2")  !=-1)    
  87.     this.aix3  = (agt.indexOf("aix 3")  !=-1)    
  88.     this.aix4  = (agt.indexOf("aix 4")  !=-1)    
  89.     this.linux = (agt.indexOf("inux")!=-1)
  90.     this.sco   = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1)
  91.     this.unixware = (agt.indexOf("unix_system_v")!=-1) 
  92.     this.mpras    = (agt.indexOf("ncr")!=-1) 
  93.     this.reliant  = (agt.indexOf("reliantunix")!=-1)
  94.     this.dec   = (agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) 
  95.            || (agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) 
  96.            || (agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1) 
  97.     this.sinix = (agt.indexOf("sinix")!=-1)
  98.     this.freebsd = (agt.indexOf("freebsd")!=-1)
  99.     this.bsd = (agt.indexOf("bsd")!=-1)
  100.     this.unix  = (agt.indexOf("x11")!=-1) || this.sun || this.irix || this.hpux || 
  101.                  this.sco ||this.unixware || this.mpras || this.reliant || 
  102.                  this.dec || this.sinix || this.aix || this.linux || this.freebsd
  103.  
  104.     this.vms   = (agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1)
  105. }
  106.  
  107. var is = new Is()
  108. // -->
  109. </SCRIPT>